32656edcfc7b5cdacc642a3f333741eb135e2419,src/net/java/sip/communicator/impl/gui/main/contactlist/SearchFilter.java,SearchFilter,addSourceContact,#SourceContact#,254
Before Change
// SourceContact over the pattern
&& (contactSource instanceof ExtendedContactSourceService)
|| isMatching(sourceContact))
GuiActivator.getContactList().addContact(
resultTreeModel,
sourceUI.getUIContact(sourceContact),
sourceUI.getUIGroup(),
true,
false);
}
/**
After Change
&& (contactSource instanceof ExtendedContactSourceService)
|| isMatching(sourceContact))
{
GuiActivator.getContactList().addContact(
treeModel,
sourceUI.getUIContact(sourceContact),
sourceUI.getUIGroup(),
false,
false);
}
}